type net/http.http2stream

28 uses

	net/http (current package)
		h2_bundle.go#L4225: 		streams:                     make(map[uint32]*http2stream),
		h2_bundle.go#L4399: 	streams                     map[uint32]*http2stream
		h2_bundle.go#L4448: type http2stream struct {
		h2_bundle.go#L4484: func (sc *http2serverConn) state(streamID uint32) (http2streamState, *http2stream) {
		h2_bundle.go#L4913: func (sc *http2serverConn) writeDataFromHandler(stream *http2stream, data []byte, endStream bool) error {
		h2_bundle.go#L5445: func (sc *http2serverConn) closeStream(st *http2stream, err error) {
		h2_bundle.go#L5691: func (st *http2stream) isPushed() bool {
		h2_bundle.go#L5697: func (st *http2stream) endStream() {
		h2_bundle.go#L5713: func (st *http2stream) copyTrailersToHandlerRequest() {
		h2_bundle.go#L5724: func (st *http2stream) onReadTimeout() {
		h2_bundle.go#L5732: func (st *http2stream) onWriteTimeout() {
		h2_bundle.go#L5877: func (st *http2stream) processTrailerHeaders(f *http2MetaHeadersFrame) error {
		h2_bundle.go#L5926: func (sc *http2serverConn) newStream(id, pusherID uint32, state http2streamState) *http2stream {
		h2_bundle.go#L5933: 	st := &http2stream{
		h2_bundle.go#L5962: func (sc *http2serverConn) newWriterAndRequest(st *http2stream, f *http2MetaHeadersFrame) (*http2responseWriter, *Request, error) {
		h2_bundle.go#L6027: func (sc *http2serverConn) newWriterAndRequestNoBody(st *http2stream, rp http2requestParam) (*http2responseWriter, *Request, error) {
		h2_bundle.go#L6102: func (sc *http2serverConn) newResponseWriter(st *http2stream, req *Request) *http2responseWriter {
		h2_bundle.go#L6209: func (sc *http2serverConn) writeHeaders(st *http2stream, headerData *http2writeResHeaders) error {
		h2_bundle.go#L6241: func (sc *http2serverConn) write100ContinueHeaders(st *http2stream) {
		h2_bundle.go#L6251: 	st *http2stream
		h2_bundle.go#L6258: func (sc *http2serverConn) noteBodyReadFromHandler(st *http2stream, n int, err error) {
		h2_bundle.go#L6268: func (sc *http2serverConn) noteBodyRead(st *http2stream, n int) {
		h2_bundle.go#L6279: func (sc *http2serverConn) sendWindowUpdate32(st *http2stream, n int32) {
		h2_bundle.go#L6284: func (sc *http2serverConn) sendWindowUpdate(st *http2stream, n int) {
		h2_bundle.go#L6307: 	stream        *http2stream
		h2_bundle.go#L6362: 	stream *http2stream
		h2_bundle.go#L6945: 	parent *http2stream
		h2_bundle.go#L10676: 	stream *http2stream